home *** CD-ROM | disk | FTP | other *** search
/ MacHack 2000 / MacHack 2000.toast / pc / The Hacks / Genie / Projects / Pedestal / Source / Includes / PedPaneIcon.hh < prev    next >
Encoding:
Text File  |  2000-06-24  |  308 b   |  22 lines

  1. /*    ==============
  2.  *    PedPaneIcon.hh
  3.  *    ==============
  4.  *    
  5.  *    Implemented by PedPaneIcon.cc
  6.  */
  7.  
  8. #pragma once
  9.  
  10. #include <Events.h>
  11.  
  12. #include "PedPaneImage.hh"
  13.  
  14. class PedPaneIcon : public PedPaneImage {
  15. public:
  16.     PedPaneIcon(PedView &inSuperView);
  17.     virtual ~PedPaneIcon();
  18.     
  19. protected:
  20.     virtual void Draw();
  21. };
  22.